ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / TrendLine<T> Class / TrendLineOrder Property






In This Topic
    TrendLineOrder Property (TrendLine<T>)
    In This Topic
    Gets or sets the number of terms in a polynomial or fourier equation.
    Syntax
    'Declaration
     
    
    <JsonAttribute("order")>
    <System.ComponentModel.DefaultValueAttribute(2)>
    Public Property TrendLineOrder As System.Integer
    'Usage
     
    
    Dim instance As TrendLine(Of T)
    Dim value As System.Integer
     
    instance.TrendLineOrder = value
     
    value = instance.TrendLineOrder
    [Json("order")]
    [System.ComponentModel.DefaultValue(2)]
    public System.int TrendLineOrder {get; set;}
    public read-write property TrendLineOrder: System.Integer; 
    JsonAttribute("order")
    System.ComponentModel.DefaultValueAttribute(2)
    public function get,set TrendLineOrder : System.int
    [Json("order")]
    [System.ComponentModel.DefaultValue(2)]
    public: __property System.int get_TrendLineOrder();
    public: __property void set_TrendLineOrder( 
       System.int value
    );
    [Json("order")]
    [System.ComponentModel.DefaultValue(2)]
    public:
    property System.int TrendLineOrder {
       System.int get();
       void set (    System.int value);
    }
    Remarks
    Set this value to an integer greater than 1. It works when the fitType is set to TrendLineFitType.Polynomial or TrendLineFitType.Fourier.
    See Also